home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / sync / RCS / Sync_SlowWait.c,v < prev    next >
Text File  |  1991-03-14  |  2KB  |  103 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     91.03.14.12.16.01;  author kupfer;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.34.03;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @Panic if the monitor lock isn't held.
  27. @
  28. text
  29. @/* 
  30.  * Sync_SlowWait.c --
  31.  *
  32.  *    Source code for the Sync_SlowWait library procedure.
  33.  *
  34.  * Copyright 1988 Regents of the University of California
  35.  * Permission to use, copy, modify, and distribute this
  36.  * software and its documentation for any purpose and without
  37.  * fee is hereby granted, provided that the above copyright
  38.  * notice appear in all copies.  The University of California
  39.  * makes no representations about the suitability of this
  40.  * software for any purpose.  It is provided "as is" without
  41.  * express or implied warranty.
  42.  */
  43.  
  44. #ifndef lint
  45. static char rcsid[] = "$Header: /sprite/src/lib/c/sync/RCS/Sync_SlowWait.c,v 1.1 88/06/19 14:34:03 ouster Exp Locker: kupfer $ SPRITE (Berkeley)";
  46. #endif not lint
  47.  
  48. #include <sprite.h>
  49. #include <sync.h>
  50.  
  51.  
  52. /*
  53.  * ----------------------------------------------------------------------------
  54.  *
  55.  * Sync_SlowWait --
  56.  *
  57.  *      Wait on a condition.  Set waiting flag and perform system call to 
  58.  *    release the monitor lock and do the wait.  Reaquire the lock before
  59.  *    returning.
  60.  *
  61.  * Results:
  62.  *    TRUE if interrupted because of signal, FALSE otherwise.
  63.  *
  64.  * Side effects:
  65.  *      Put the process to sleep and release the monitor lock.
  66.  *    
  67.  * ----------------------------------------------------------------------------
  68.  */
  69.  
  70. Boolean
  71. Sync_SlowWait(conditionPtr, lockPtr, wakeIfSignal)
  72.     Sync_Condition    *conditionPtr;    /* Condition to wait on. */
  73.     register Sync_Lock     *lockPtr;    /* Lock to release. */
  74.     Boolean        wakeIfSignal;    /* TRUE => wake if signal pending. */
  75. {
  76.     ReturnStatus    status;
  77.  
  78.     if (!lockPtr->inUse) {
  79.     panic("Sync_SlowWait: monitor lock not held");
  80.     }
  81.  
  82.     conditionPtr->waiting = TRUE;
  83.  
  84.     status = Sync_SlowWaitStub(conditionPtr, lockPtr, wakeIfSignal);
  85.  
  86.     Sync_GetLock(lockPtr);
  87.  
  88.     return(status);
  89. }
  90. @
  91.  
  92.  
  93. 1.1
  94. log
  95. @Initial revision
  96. @
  97. text
  98. @d17 1
  99. a17 1
  100. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  101. d49 4
  102. @
  103.